Callback Activity Types
ThetelCACallbackMsg
message provides information about callback activity on a call appearance. Thevalue
parameter contains one of the following constants to identify the type of activity.
enum { telCallbackCleared = 0, telCallbackEst = 1, telCallbackNowAvail = 2, telCallbackFailed = 3, telCallbackDesired = 4, telCallbackDesiredCleared = 5, telCalledback = 6 };Constant descriptions
telCallbackCleared
- A callback request has been cleared. You previously originated the request because the destination number was busy, then you called the
TELCallbackClear
function to cancel the request. ThehTELCA
parameter to your message handler containsnil
.telCallbackEst
- A callback request has been established as a result of a successful call to the
TELCallbackSet
function.telCallbackNowAvail
- A previously busy number is available. You previously established a callback request. You can complete the callback by calling the
TELCallbackNow
function. ThehTELCA
parameter to your message handler containsnil
.telCallbackFailed
- The attempt to establish a callback request has failed.
telCallbackDesired
- A remote party has requested a return call. You can respond to the callback request by calling the
TELCallbackNow
function to make the call orTELCallbackClear
to clear the callback request. ThehTELCA
parameter to your message handler containsnil
.telCallbackDesiredCleared
- A callback desired request has been cleared. Both ends get a callback message with this
value
parameter setting when either end (originator or target) clears a callback desired. ThehTELCA
parameter to your message handler containsnil
.telCalledback
- A callback has been successfully completed. You get a callback message with this
value
parameter setting when either (1) you got a callback message withtelCallbackDesired
in thevalue
parameter and you then called theTELCallbackNow
function to return the call, or (2) you got a callback message withtelCallbackNowAvail
in thevalue
parameter and you then called theTELCallbackNow
function to call a previously busy number.
Main | Top of Section | What's New | Apple Computer, Inc. | Find It | Feedback | Help